home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
oper_sys
/
oasis
/
oasisegs.lha
/
egs
/
hanoi.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-03-25
|
184b
|
19 lines
/* C version of hanoi benchmark */
#include <stdio.h>
han(n,a,b,c)
{
int n1;
if (n<=0) return;
n1 = n-1;
han(n1,a,c,b);
han(n1,c,b,a);
}
main()
{
han(20,1,2,3);
}